home *** CD-ROM | disk | FTP | other *** search
- global gApp
-
- on startMovie
- if the machineType = 256 then
- openXLib("xmisc.dll")
- set lFred to XMisc(mnew)
- set lSysFolder to lFred(mGetSysDir)
- closeXLib("xmisc.dll")
- set lPrefPath to lSysFolder & "\SFF02.ini"
- else
- openXLib("sysfold.xcmd")
- set lSysFolder to systemFolder()
- closeXLib("sysfold.xcmd")
- set lPrefPath to lSysFolder & "Preferences:SFF02 prefs"
- end if
- set XJack to FileIO(mnew, "read", lPrefPath)
- if XJack = -43 then
- beep()
- end if
- set lPrefFile to XJack(mReadFile)
- if lPrefFile = EMPTY then
- alert("Where's online.ini")
- else
- set gApp to the last line in lPrefFile
- end if
- end
-